home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / games / shfflsrc.zoo / makefile < prev    next >
Makefile  |  1991-07-16  |  1KB  |  37 lines

  1. #   Makefile for Shuffle, a puzzle game for the Atari ST
  2. #   Copyright (C) 1991  by Robert Fischer
  3. #
  4. #    This program costs no money; you may redistribute it and/or modify it
  5. #    under the terms of the Lynxware General License as published by Robert
  6. #    Fischer; either version 1, or (at your option) any later version. 
  7. #
  8. #   This program is distributed in the hope that it will be useful,
  9. #   but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11. #   Lynxware General License for more details.
  12. #
  13. #   You should have received a copy of the Lynxware General License
  14. #   along with this program; if not, write to the author.
  15. #
  16. #   To contact the author, call or write:
  17. #       Robert Fischer
  18. #       80 Killdeer Road
  19. #       Hamden, CT    06517
  20. #       (203) 288-9599
  21. #        E-mail: fischer-robert@cs.yale.edu
  22. LYNXLIBDIR = d:\ul\c
  23. OBJ = shuffle.o
  24.  
  25. shuffle.prg : $(OBJ)
  26.     cc -VGEM -o shuffle.prg $(OBJ) -llynx
  27.     strip shuffle.prg
  28.  
  29. shfflbin.zoo : shuffle.prg shuffle.rsc shuffle.doc d:\ul\lynxlic.doc
  30.     zoo -add shfflbin.zoo $?
  31.  
  32. shfflsrc.zoo : makefile shuffle.c shuffle.rsd shuffle.rsc d:\ul\lynxlic.doc
  33.     zoo -add shfflsrc.zoo $?
  34.  
  35. zoos : shfflbin.zoo shfflsrc.zoo
  36.     @echo Done
  37.